Authentication Parameters
data class AuthenticationParameters(sessionId: String, sessionSecret: String, scheme: String)
Content copied to clipboard
The class used to provide input parameters required for an authentication request.
Parameters
sessionId
The unique ID of the authentication session. You will have received this in the response to the create session call to our Sessions API.
sessionSecret
The session secret. You will have received this in the response to the create session call to our Sessions API.
scheme
The name of the customer's card scheme: "Visa", "Mastercard", "Jcb", "Amex", or "Diners". Used to display the scheme's logo on the progress user interface.
Constructors
AuthenticationParameters
Link copied to clipboard
fun AuthenticationParameters(sessionId: String, sessionSecret: String, scheme: String)
Content copied to clipboard